home *** CD-ROM | disk | FTP | other *** search
/ MacWorld: Super Stacks! / Macworld CD.iso / HyperCard Archives / International / French v1.2.5.1 / Piles principales / Notes sur la version 1.2.5 / card_9895.txt < prev    next >
Text File  |  1989-10-04  |  1KB  |  55 lines

  1. -- card: 9895 from stack: in.5
  2. -- bmap block id: 0
  3. -- flags: 0000
  4. -- background id: 5683
  5. -- name: Number
  6.  
  7.  
  8. -- part contents for background part 7
  9. ----- text -----
  10. Number
  11.  
  12. -- part contents for background part 9
  13. ----- text -----
  14. Nouvelles fonctions HyperTalk
  15. Carte 6 sur 10
  16.  
  17. -- part contents for background part 8
  18. ----- text -----
  19. the number of cards of <fond>
  20.  
  21. -- part contents for background part 10
  22. ----- text -----
  23. <fond> est une expression identifiant un fond.
  24.  
  25.  
  26. -- part contents for background part 11
  27. ----- text -----
  28. The "number of cards of <fond>" est une extension de la fonction Number qui permet de conna√Ætre le nombre de cartes partageant le fond d√©sign√©. 
  29.  
  30. -- part contents for background part 17
  31. ----- text -----
  32. put the number of cards of background 1
  33. put the number of cds of this bkgnd
  34. put the number of cards of bg "commande"
  35. put the number of cds of bg id 5683
  36. put the number of cards of NomDeFond
  37. put the number of cds of prev bg
  38.  
  39. repeat with i = 1 to the number of cards¬¨
  40.    of this background
  41.    ...Action1...
  42. end repeat
  43.  
  44. -- part contents for background part 18
  45. ----- text -----
  46. on numberDemo
  47.  
  48. --affiche le nombre de cartes du fond courant
  49.  
  50.    put the number of cards of this bkgnd &&¬¨
  51.        "cartes ont ce fond"
  52.    wait 2 seconds
  53.    cleanExit -- dans le script du fond courant
  54.  
  55. end numberDemo